@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --main-color: #D5B883; 
    --color-dark: #1b1b1b;
    --text-color: #1f1f1f;
    --text-grey: #fff;
    --header-color: #505050;
    --background: #950740;
    --second-bg: #364677;
    --big-font: 3rem;
    --medium-font: 2rem;
    --p-font: 1.1rem;
    --box-shadow: 0 0px 60px 0 rgba(0, 0, 0, 1);
    --nav_color: #191F28;
    --book-trailer-bg: #3d4d62;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}
::selection{
    color: #fff;
    background-color: var(--main-color);
}
/* Target the entire scrollbar */
::-webkit-scrollbar {
    width: 5px;             /* Width of the scrollbar */
  }
  
  /* Style the track (background of the scrollbar) */
  ::-webkit-scrollbar-track {
    background: var(--color-dark);      /* Light grey background */
  }
  
  /* Style the scrollbar thumb (the moving handle) */
  ::-webkit-scrollbar-thumb {
    background-color: var(--main-color);   /* Dark grey color */
    border-radius: 6px;
  }
  
  /* Hover effect for the scrollbar thumb */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #fff;   /* Darker color on hover */
  }
body {
    color: var(--text-grey);
    overflow-x: hidden;
}

/* HEADER */
.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

header.sticky {
    background-color: var(--color-dark);
    box-shadow: var(--box-shadow);
    transition: all .4s ease-in-out;
}

header {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 1rem 5rem;
}

.header {
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 100;
    transition: box-shadow .4s;
}

.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .nav-logo{
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 600;
} */
/* .nav-logo span{
    color: #fff;
} */

.nav-logo img {
    max-width: 100%;
    width: 20vw;
}

.nav-toggle div,
.nav-closeBtn div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50px !important;
}

.nav-closeBtn,
.nav-toggle {

    font-size: 1rem;
    cursor: pointer;
    display: none;
    background-color: transparent;
    transition: all .3s ease-in-out;
    border-radius: 50px;
}

.nav-list .active {
    color: var(--main-color);
}

.nav-closeBtn:hover,
.nav-toggle:hover {
    color: #fff;
    background-color: var(--main-color);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    html {
        font-size: 75%;
    }
}

@media screen and (max-width: 1024px) {
    .nav__menu {
        display: flex;
        column-gap: 3rem;
        align-items: self-start !important;
    }

    /* The nav menu itself */
    .nav__menu {
        position: fixed;
        left: -100%;
        top: 0;
        padding: 10rem 1.5rem 2rem 12.5rem;
        background-color: var(--color-dark);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: left .4s;
        z-index: 102;
        /* Ensure it's above the overlay */
    }

    /* Background overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        /* semi-transparent dark background */
        opacity: 0;
        pointer-events: none;
        /* so it doesn't interfere with clicks */
        transition: opacity .4s;
        z-index: 101;
        /* just below the navbar */
    }

    /* The close button and toggle button */
    .nav-closeBtn,
    .nav-toggle {
        display: block !important;
    }

    /* The logo */
    .nav-logo {
        z-index: 103;
    }

    /* The navigation list and social accounts */
    .nav-list{
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        row-gap: 3rem;
    }

    /* Position of the close button */
    .nav-closeBtn {
        position: absolute;
        top: 1.5rem !important;
        right: 5rem !important;
    }

    /* When the menu is open, show the overlay and slide in the menu */
    .nav__menu.open {
        left: 0;
        /* Move the menu into view */
    }

    .nav-overlay.open {
        opacity: 1;
        /* Make the overlay visible */
        pointer-events: auto;
        /* Enable interaction with the overlay */
    }
    .social-accounts{
        display: block !important;
    }
    .social-account-flex{
        display: flex !important;
    }
}


@media screen and (max-width: 768px) {
    header {
        padding: .5rem 0rem;
    }

    section {
        padding: 2rem !important;
    }

    .nav-logo img {
        max-width: 100%;
        width: 60vw !important;
    }

    .nav {
        position: relative;
        height: 5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 1.5rem;
    }

    .nav__menu {
        padding: 10rem 1.5rem 2rem 9rem;

    }

    .nav-closeBtn {
        position: absolute;
        top: 1.6rem !important;
        right: 1.3rem !important;

    }

    .heading-title {
        margin-top: 7rem !important;
    }

    .home {
        height: auto;
        flex-direction: column;
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .home-content {
        order: 2;
    }

    .home-img {
        margin: auto;
        height: auto;
        width: auto;
    }

    .home-img img {
        width: 80vw !important;
        max-width: 100%;
        height: auto;
        margin-top: -15%;
    }

    .home-content h1 {
        font-size: var(--medium-font) !important;
    }

    .home-img,
    .home-content {
        width: 100% !important;
    }

    .about {
        flex-direction: column;
        gap: 2rem !important;
    }

    .about img {
        width: 100vw !important;
        margin-top: 2rem;
    }

    .show-scroll {
        bottom: 1rem !important;
    }

    .scrollUp {
        padding: .7rem !important;
        font-size: .7rem !important;
        right: 2rem !important;
    }
    .nav-link {
        color: #fff;
        font-size: 1.3rem !important;
        font-weight: 500;
        transition: color .3s;
    }
}

.nav__menu {
    display: flex;
    column-gap: 3rem;
    align-items: center;
}

.nav-list,
.social-accounts {
    display: flex;
    column-gap: 2rem;
    /* justify-content: center; */
}
.social-accounts{
    display: none;
}
.nav-link {
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    transition: color .3s;
}

.nav-link:hover {
    color: var(--main-color);
}

.social-accounts {
    column-gap: 1.5rem;
    align-self: flex-end;
}

.nav-social-link {
    color: #fff;
    font-size: 1.2rem;
    background: var(--main-color);
    border: 2px solid var(--main-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.nav-social-link:hover {
    color: var(--main-color);
    background-color: transparent;
}

.show-menu {
    left: -88px;
}

/* MAIN */

section {
    padding: 5rem;
    /* min-height: 100vh; */
}

.heading-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0rem 2rem;
    color: #fff !important;
}

.heading-title span {
    color: var(--main-color);
}


.about-title span {
    color: var(--main-color);
}

#services {
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the home section take up the full viewport */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Container for the content */
.home {
    padding-top: 2rem;
    position: relative;
    z-index: 1;
    /* Make sure the content stays above the video */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Styles for the video background */
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* Ensure the video stays behind all other content */
    pointer-events: none;
    /* Prevent the video from interfering with any mouse events */
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.home-content h3 {
    font-size: 2rem;
    font-weight: 700;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: var(--big-font);
}

.home-img img {
    width: 60vw;
    max-width: 100%;
}

.home-content p {
    margin-top: 1rem;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.5rem;
}

.btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background-color: var(--main-color);
    border-radius: 4rem;
    border: 2px solid var(--main-color);
    /* box-shadow: 0 0 0.5rem var(--header-color); */
    font-size: 1rem;
    color: var(--text-grey);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: all 0.6s ease-in-out;
}

.btn:hover {
    background: transparent;
    color: var(--main-color);
}

.home-img img {
    animation: img 2s ease-in-out infinite;
    animation-delay: 2s;
}

.home-img,
.home-content {
    width: 50%;
}

#about {
    background-color: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin: 5rem 0rem;
}

/*.about .about-img .images:nth-child(1) {*/
/*    position: absolute;*/
/*    transform: rotate(-10deg);*/
/*    left: 7%;*/
/*    margin-bottom: 3rem;*/
/*}*/
/*.about .about-img .images:nth-child(2) {*/
/*    position: absolute;*/
/*    transform: rotate(10deg);*/
/*    left: 25%;*/
/*}*/
.about .about-img img {
    border-radius: 10px;
    width: 35vw;
    max-width: 100%;
  
}
.about-img,
.about-content {
    width: 50%;
}
.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-content h2 {
    text-align: left;
    line-height: 1;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--main-color);
    margin: 2rem 0rem 1rem;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.5rem;
}

@keyframes img {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* BOOKS */
#books {
    background-image: url(../images/bg/book-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.books {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

#books .books .books-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    padding: 3rem;
    /* margin-top: -8rem; */
}

#books .books .books-container img {
    max-width: 100%;
    width: 25vw;
    border-radius: 20px;
    transition: all .3s ease-in-out;
}

#books .books .books-container img:hover {
    transform: translateY(-8px);
}

/* #books .books .books-container a {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-top: 1rem;
    background-color: var(--main-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--main-color);
    transition: all .3s ease-in-out;
} */

/* #books .books .books-container a:hover {
    background-color: transparent;
    color: var(--main-color);
    transform: translateY(-8px);
} */

#books .about .about-container .about-right {
    background-color: #107569;
    padding: 2rem;
    border-style: dashed;
    border-color: #fff;
    border-width: 5px;
    text-align: left;
}

.books-item-1,
.books-item-2 {
    width: 50%;
}
.books-item-2{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.books-item-1 {
    text-align: left;
}

/* .books-item-1 span {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 3rem;
    color: #fff;
    background: var(--nav_color);
    padding: .7rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--nav_color);
    cursor: pointer;
    transition: all .3s ease-in-out;
} */

/* .books-item-1 span:hover {
    background: transparent;
    color: var(--nav_color);
} */

.books-item-1 p {
    margin-top: 2rem;
    text-align: justify;
    line-height: 1.5rem;
}

.books-item-1 h3 {
    margin-top: 2rem;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-btns a{
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--main-color);
    margin-top: 1rem;
    transition: all .3s ease-in-out;
}
.footer-btns a:hover{
    background-color: transparent;
    color: var(--main-color);
}
.footer_book{
    margin-top: 2rem;
}
.footer_book em{
    margin-bottom: 2rem;
    font-weight: 600;
   font-style: normal;
   color: var(--main-color);
   font-size: 18px;
}
.footer_book ul{
    margin-top: 1rem;
}
.footer_book li{
    border-bottom: 1px solid #6a6a6a;
    padding: .5rem 0rem 0.5rem;
   display: flex;
   gap: 1rem;
   font-weight: 600;
}
.footer_book li label{
    font-weight: 500;
    color: var(--main-color);
}
.footer_book li .book_title_bottom{
    background: transparent !important;
    border: none !important;
    font-size: none !important;
    display: block;
    font-weight: 600;
    color: var(--main-color);
    margin-top: 0rem !important;
    padding: 0rem !important;
    border-radius: none !important;
    transition: none;
}
.footer_book li .book_title_bottom:hover{
    color: var(--main-color) !important;
}
@media (max-width: 768px) {
    #books .books .books-container {
        flex-direction: column;
    }

    .books-item-1,
    .books-item-2 {
        width: 100% !important;
    }

    #books .books .books-container {

        padding: 0rem !important;
        margin-top: 5rem !important;
    }
    #books .books .books-container img {
        max-width: 100%;
        width: 100vw !important;
       
    }
    .books-item-1 h3 {
        margin-top: 2rem;
        font-size: 25px !important;
        font-weight: 700;
        text-transform: uppercase;
    }
}
/* BOOK TRAILER */
#selfie-videos{
    background-color: var(--book-trailer-bg);
}
.selfie-videos-container{
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0rem 5rem 0rem 5rem;
  }
  .video-container-selfie-videos {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
    justify-content: center;
  }
  .page-buttons-selfie-videos{
display: flex;
margin-top: 2rem;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
gap: 1rem;
}
.page-buttons-selfie-videos a{
background: #D5B883;
padding: .8rem;
width: 140px;
text-align: center;
text-decoration: none;
font-weight: 600;
color: #000;
border-radius: 10px;
transition: All .3s ease-in-out;

}
.page-buttons-selfie-videos a:hover{
background: #9F1620;
color: #fff;
}
.page-button-selfie-videos.active {
background: #9F1620;
color: #fff;
}
  .video-container-selfie-videos .video-player-selfie-videos {
    background-color:  var(--nav_color);
    border-radius: 5px;
    padding: 10px;
  }

  .video-container-selfie-videos .video-player-selfie-videos video {
    width: 100%;
    border-radius: 5px;
  }

  .video-container-selfie-videos .video-list-selfie-videos {
    background: #eee;
    border-radius: 5px;
    height: 500px;
    overflow-y: scroll;
  }

  .video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar {
    width: 7px;
  }

  .video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar-track {
    background: #D5B883;
    border-radius: 50px;
  }

  .video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 50px;
  }

  .video-container-selfie-videos .video-list-selfie-videos .vidmultimedia video {
    width: 100px;
    height: 50px;
    border-radius: 3px;
  }

  .video-container-selfie-videos .video-list-selfie-videos .vidmultimedia {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f7f7;
    border-radius: 3px;
    margin: 10px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, .1);
    cursor: pointer;
  }

  .video-container-selfie-videos .video-list-selfie-videos .vidmultimedia:hover {
    background: #D5B883;
  }

  .video-container-selfie-videos .video-list-selfie-videos .vidmultimedia.active {
    background: #D5B883;
  }

  .title-multimedia {
    font-weight: 400;
    margin-top: 10px;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
  }
  .selfie-videos-container{
    padding: 0rem !important;
  }
  @media (max-width:960px) {
    .video-container-selfie-videos {
      grid-template-columns: 1.5fr 1fr;
    
    }
  }

  @media (max-width: 768px) {
    .video-container-selfie-videos {
      grid-template-columns: 1fr;
    }
    #purchase .purchase {
        padding: 8rem 0rem 5rem 0rem !important;
    }
  }


/* MAKE A PURCHASE */

#purchase {
    background-image: url(../images/bg/purchase-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#purchase .purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0rem 5rem 0rem;
}

#purchase .purchase .purchase_card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background: #fff; */
    padding: 1rem;
border-radius: 20px;
}

#purchase .purchase .purchase_card .purchase_img img {
    max-width: 100%;
    width: 25vw;
}
#purchase .purchase .purchase_card .purchase_btn a{
 display: inline-block;
 background-color: var(--main-color);
 color: #fff;
 padding: 1rem 2rem;
 border-radius: 50px;
 border: 2px solid var(--main-color);
 transition: all .3s ease-in-out;
}
#purchase .purchase .purchase_card .purchase_btn a:hover{
background-color: transparent;
color: var(--main-color);
}

@media (max-width: 768px) {
    #purchase .purchase .purchase_card .purchase_img img {
        max-width: 100%;
        width: 70vw;
    }
}
/*CONTACT*/
#contact {
    background-image: url(../images/bg/contact-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hidden-fields-container{
    display: none;
}
.contact {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

#contact .contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0rem 15rem;
}

/* .contact-address {
background: #eee;
padding: 2rem;

} */

#contact .contact-form .address,
#contact .contact-form .email-address,
#contact .contact-form .phone-number {
    margin-bottom: 2rem;
}

#contact .contact-form .address i,
#contact .contact-form .email-address i,
#contact .contact-form .phone-number i {
    float: left;
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    /*#a06f76;*/
    color: #fff;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .contact-form .address h4,
#contact .contact-form .email-address h4,
#contact .contact-form .phone-number h4 {
    padding: 0 0 0 55px;
    margin-top: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
}

#contact .contact-form .address p,
#contact .contact-form .email-address p,
#contact .contact-form .phone-number p {
    padding: 0 0 0 55px;
    margin-bottom: 0;
    font-size: 1rem;
}

/* #contact .form {

background: #eee;
padding: 2rem;
} */

#contact form {
    text-align: center;
}

#contact form .input-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: none;
}

#contact form {
    /* max-width: 40rem; */
    margin: 1.5rem auto;
    text-align: center;
    margin-bottom: 0.8rem;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.8rem;
    color: #000;
    background: #fff;
    border-radius: .5rem;
    margin: .6rem 0;
    border: none;
    font-weight: 600;
}

/* #contact form .input-box input {
width: 49%;
} */

#contact form .btn {
    margin-top: 3rem;
    margin-bottom: 3rem;
    cursor: pointer;
}

input::-webkit-input-placeholder {
    color: #000;
    opacity: .5;
}

.contact-form .form {
    background: var(--main-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form .form,
.contact-form .contact-address {
    width: 100%;
}

#contact form textarea {
    resize: none;
    height: 100px;
}

#contact form .btn {
    margin-top: 0;
    margin-bottom: 0;
    cursor: pointer;
    background: var(--button-color);
    /*#a06f76;*/
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s ease-in-out;
    float: left;
}

#contact form .btn:hover {
    background: var(--hover-button);
    color: #fff;
    box-shadow: 0px 0px 15px var(--shadow);
}

@media (max-width: 1024px) {
    #contact .contact-form {
        flex-direction: column;
        width: 100% !important;
        padding: 0rem;
    }

    #contact .contact-form .address h4,
    #contact .contact-form .email-address h4,
    #contact .contact-form .phone-number h4 {
        padding: 0 0 0 55px;
        margin-top: 20px;
        font-size: 17px;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 1rem;
    }

    .contact-form .form,
    .contact-form .contact-address {
        width: 100%;
        padding: 1rem;
    }

    .about-img,
    .about-content {
        width: 100%;
    }
}

input[type=submit] {
    background: var(--nav_color);
    /*#a06f76;*/
    color: rgb(248, 247, 247);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .6s ease;
}

input[type=submit]:hover {
    background: var(--hover-button);
    color: #fff;
    box-shadow: 0px 0px 15px var(--shadow);
}

#contact .wpcf7-submit {
    color: #fff;
    width: 150px;
    border: none;
    border-radius: 50px;
    background: var(--color-dark);
    /*#a06f76;*/
}

#contact .wpcf7-submit:hover {
    background: #fff;
    color: var(--nav_color);
    box-shadow: 0px 0px 15px var(--shadow);
    font-weight: 700;

}

#contact .screen-reader-response {
    color: #fff;
}

#contact .wpcf7-response-output {
    display: none !important;
}

/* footer */

.scrollUp {
    position: fixed;
    right: 5rem;
    bottom: -50%;
    background-color: var(--main-color);
    color: #fff;
    box-shadow: var(--box-shadow);
    display: inline-flex;
    padding: 1rem;
    font-size: 1rem;
    z-index: 99;
    border-radius: 50px;
    transition: bottom .3s, transform .3s;
}

.scrollUp:hover {
    transform: translateY(-.5rem);
}

.show-scroll {
    bottom: 3rem;
}

/* footer */
#footer {
    background-color: var(--color-dark);
}

.footer .footer-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 2rem;
}
.quippy{
    color: var(--main-color);
}

/* VIDEO*/
.header-title{
    text-align: center;
    margin-top: 3rem;
    color: #fff;
}
.video-container {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
      align-items: flex-start;
      padding: 3rem 5%;
      justify-content: center;
    }

    .video-container .video-player {
      background-color: #eee;
      border-radius: 5px;
      padding: 10px;
    }

    .video-container .video-player iframe {
      width: 100%;
      border-radius: 5px;
    }

    .video-container .video-list {
      background: #eee;
      border-radius: 5px;
      height: 100%;
      overflow-y: scroll;
    }

    .video-container .video-list::-webkit-scrollbar {
      width: 7px;
    }

    .video-container .video-list::-webkit-scrollbar-track {
      background: #ccc;
      border-radius: 50px;
    }

    .video-container .video-list::-webkit-scrollbar-thumb {
      background: #666;
      border-radius: 50px;
    }

    .video-container .video-list .video-item img {
      width: 100px;
      height: 50px;
      border-radius: 3px;
    }

    .video-container .video-list .video-item {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #f7f7f7;
      border-radius: 3px;
      margin: 10px;
      padding: 5px;
      border: 1px solid rgba(0, 0, 0, .1);
      cursor: pointer;
    }

    .video-container .video-list .video-item h3 {
      font-size: 12px !important;
      background: none !important;
      text-align: left;
      color: #000;
    }

    .video-container .video-list .video-item:hover {
      background: #dbdbdb;
    }

    .video-container .video-list .video-item.active {
      background: #cdc;
    }

    .video-description {
      margin-top: 10px;
      color: #000;
    }

    @media (max-width:960px) {
      .video-container {
        grid-template-columns: 1.5fr 1fr;
        padding: 2rem;
      }
    }

    @media (max-width: 768px) {
      .video-container {
        grid-template-columns: 1fr;
        padding: 0rem !important;
      }

      .video-container .video-player iframe {
        width: 100%;
        height: 300px !important;
        border-radius: 5px;
      }
    }
    #myVideo{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    }
    #video{
        background-color: var(--color-dark);
    }
    /* ============= SWIPER ============== */
    .swiper {
          width: 100%;
          height: 100%;
        }
    /* .swiper-wrapper{
        width: 50%!important;
    } */
        .swiper-slide {
          /* text-align: center; */
          font-size: 18px;
          background: transparent;
          display: flex !important;
          justify-content: center;
          align-items: center;
          gap: 1rem;
          padding: 3rem;
        }
    
        .swiper-slide img {
          display: block;
        border-radius: 20px;
         
        }
        .swiper .swiper-wrapper .swiper-slide .image-container,
        .swiper .swiper-wrapper .swiper-slide .book-details{
            width: 50%;
        }
        .swiper-button-next,
        .swiper-button-prev{
            background: #ffffff9c;
            font-size: 10px!important;
            font-weight: 700;
            padding: 25px!important;
            border-radius: 50px;
            color: #000 !important;
            transition: all .3s ease-in-out;
        }
        .swiper-button-next:hover,
        .swiper-button-prev:hover{
            background:var(--main-color);
            color: #fff !important;
            box-shadow: 0px 0px 15px var(--shadow);
        }
        .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: 'next';
        font-size: 20px!important;
    }
    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        content: 'prev';
        font-size: 20px!important;
    }
    .swiper .swiper-wrapper .swiper-slide .book-details p{
        color: white;
        font-size: 20px;
    }
        @media (max-width: 768px){
        .swiper-slide{
            flex-direction: column;
        }
        .swiper .swiper-wrapper .swiper-slide .image-container,
        .swiper .swiper-wrapper .swiper-slide .book-details{
            width: 100% !important;
        }
    }
    /* ================== BOOK TABLIST ================== */
    .book-show-details {
        display: none;
    }
    .book-show-details.active {
        display: flex;
    }
    .nav-item-tab {
        cursor: pointer;
        padding: 10px;
        border-right: 1px solid var(--main-color);
        /* display: inline-block; */
        width: 325px;
    }
    .nav-item-tab{
        background-color: transparent;
        color: #fff;
        transition: all .3s ease-in-out;
    }
    .nav-item-tab:hover {
        background-color: var(--main-color);
        color: #000;
        font-weight: bold;
    }
    .nav-item-tab.active {
        background-color: var(--main-color);
        color: #000;
        font-weight: bold;
    }
    .button-tab{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .button-tab select {
        margin-top: 2rem;
        width: 45%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background: #fff;
        cursor: pointer;
    }
    
    @media screen and (max-width: 768px){
        .button-tab select {
            margin-top: 5rem;
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: #fff;
            cursor: pointer;
        }
        .book-show-details{
            flex-direction: column;
        }
    }
    /* ============== OWL CAROUSEL ============= */
   
    @media (max-width: 768px){
        #purchase .purchase .purchase_img img {
            
            width: 100% !important;
        }
    }
   
    #book-purchase .item{
        margin: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }
       #book-purchase .item img{
        display: block;
        width: 80%;
        height: auto;
      }
      .owl-theme .owl-controls .owl-page span {
        display: block;
        width: 12px;
        height: 12px;
        margin: 5px 7px;
        filter: Alpha(Opacity = 50);
        opacity: 0.5;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        background: var(--main-color);
    }
    
    #audiobooks {
        background-color: var(--color-dark);
    /*background-image: url(../images/bg/audiobook-bg.png);*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}
   
    .podcast-container{
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 3rem;
    }
  
    .video-container-audiobooks{
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1rem;
      align-items: flex-start;
      /* padding: 1rem 5%; */
      justify-content: center;
    }


#audiobooks h2{
    text-align: center;
    font-size: 35px;
    color: var(--main-color);
    font-weight: 600;
} 
.podcast-container{
    margin-top: 5rem;
} 
    .video-container-audiobooks .video-player{
      background-color: var(--main-color);
      border-radius: 5px;
      padding: 10px;
    }
.podcast-container .text_sentence{
    text-align: center;
    padding: 1rem;
    margin-bottom: 2rem;
}
.podcast-container .text_sentence p{
    font-size: 1.2rem;
}
    .video-container-audiobooks .video-player iframe {
      width: 100%;
      border-radius: 5px;
    }
     .video-container-audiobooks .video-lists{
      /*background: #eee;*/
      border-radius: 5px;
      height: 100%;
      overflow-y: scroll;
    }
     .video-container-audiobooks .video-lists::-webkit-scrollbar {
      width: 7px;
    }

    .video-container-audiobooks .video-lists::-webkit-scrollbar-track{
      border-radius: 50px;
       background: none !important;
    }

     .video-container-audiobooks .video-lists::-webkit-scrollbar-thumb{
      background: #D5B883;
      border-radius: 50px;
    }
    .video-container-audiobooks .video-lists .video-items img{
      width: 100px;
      border-radius: 3px;
    }
    
    .video-container-audiobooks .video-lists .video-items {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #f7f7f7;
      border-radius: 3px;
      margin: 10px;
      padding: 5px;
      border: 1px solid rgba(0, 0, 0, .1);
      cursor: pointer;
      color: var(--main-color);
       font-weight: 600;
       font-size: 10px;
       transition: all .3s ease-in-out;
    }


     .video-container-audiobooks .video-lists .video-items:hover{
      background: var(--main-color);
      color: #000 !important;
    }
 
    .video-container-audiobooks .video-lists .video-items.active{
      background: var(--main-color);
    color: #000!important;
    }

    .video-description {
        font-weight: 600;
      /*margin-top: -140px;*/
      /*transform: translate(0px, -27px);*/
      display:flex;
      color: #000;
      transition: all .3s ease-in-out;
      justify-content: center;
    }

    @media (max-width:960px) {
      .video-container-audiobooks {
        grid-template-columns: 1.5fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .video-container-audiobooks {
        grid-template-columns: 1fr;
      }
    }
    @media(max-width: 500px){
 
    .audiobooks-container{
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      /*margin-top: 4rem;*/
    }

    .video-container-audiobooks .video-lists .video-items img{
      width: 70px;
      border-radius: 3px;
    }
    

    .video-container-audiobooks .video-player{
      background-color: #D5B883;
      border-radius: 5px;
      padding: 10px;
      height: 260px;
    }

    .video-container-audiobooks .video-player iframe {
      width: 100%;
      border-radius: 5px;
      height: 200px;
    }
    .video-description {
        font-weight: 600;
      margin-top: 0px!important;
        transform: translate(7px, -11px);
        display:flex;
        justify-content:center;
      /*color: var(--main-color);*/
      transition: all .3s ease-in-out;
    }
      

    }
    @media(max-width:375px){
    .page-buttons-podcast,
    .page-buttons-audiobooks{
      display: flex;
      margin-top: 2rem;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      gap: .5rem;
      padding: 1rem;
    }

    .audiobooks-container{
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 6rem!important;
    }

        .page-buttons-podcast a,
        .page-buttons-audiobooks a{
          background: #D5B883;
          padding: .5rem;
          width: 140px;
          text-align: center;
          text-decoration: none;
          font-weight: 600;
          color: #000;
          border-radius: 10px;
          transition: All .3s ease-in-out;
          font-size: 8px;
        }
    .video-container-audiobooks .video-list .video-item img{
      width: 50px;
      border-radius: 3px;
    }
   
    .video-container-audiobooks .video-player{
      background-color: #fff;
      border-radius: 5px;
      padding: 10px;
      height: 260px;
    }
  
    .video-container-audiobooks .video-player iframe {
      width: 100%;
      border-radius: 5px;
      height: 200px;
    }
    .video-description {
        font-weight: 600;
      margin-top: 0px!important;
      color: #000;
      transition: all .3s ease-in-out;
    }
}

#audiobooks .audiobooks-logo-icon{
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 1rem;
      text-align: center;
    }
    #audiobooks .podcasts-container .podcast-logo-container{
      display: block;
      text-align: center;
      margin-top: 1rem !important;
    }
    #audiobooks .podcast-logo-container .podcast-logo-item{
     /* background-image: linear-gradient(to top, #a3bded 0%, #6991c7 100%); */
     position: relative;
      display: inline-block;
    }
    #audiobooks .podcast-logo-container .podcast-logo-item img{
      width: 30px;
      max-width: 100%;
      cursor: pointer;
      padding: 5px;
      background: #fff;
      border-radius: 50%;
     }
     #audiobooks .podcast-logo-container .podcast-logo-item{
      
     padding: 1rem;
     
     border-radius: 50px;
     }
     #audiobooks .podcast-logo-container .podcast-logo-item span{
      visibility: hidden;
      width: 100px;
      background: var(--main-color);
      box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
      color: var(--header-color);
      font-weight: 600;
      text-align: center;
      border-radius: 5px;
      padding: 5px;
      position: absolute;
      z-index: 1;
      bottom: 90%; /* Position above the icon */
      left: 50%;
      margin-left: -51px;
      opacity: 0;
      transition: opacity 0.3s;
      align-items: center;
    justify-content: center;
    margin-top: -2rem;
    font-size: 11.4px !important
     }
     #audiobooks .podcast-logo-container .podcast-logo-item span::after{
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #D5B883 transparent transparent transparent;
     }
     #audiobooks .podcast-logo-container .podcast-logo-item:hover span{
      visibility: visible;
      opacity: 1;
     }